-
-
Notifications
You must be signed in to change notification settings - Fork 686
[16.0][ADD] hr_employee_firstname_partner_firstname. #1421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 16.0
Are you sure you want to change the base?
[16.0][ADD] hr_employee_firstname_partner_firstname. #1421
Conversation
New glue module between hr_employee_firstname and partner_firstname. Correctly prepare employee value, when creating employee from user.
in hr_employee_lastnames, _update_partner_firstname function write on partner with the field 'lastname2'. This field is defined in a module that is not present in the dependency
@@ -8,7 +8,7 @@ | |||
"license": "AGPL-3", | |||
"category": "Human Resources", | |||
"summary": "Split Name in First Name, Father's Last Name and Mother's Last Name", | |||
"depends": ["hr_employee_firstname"], | |||
"depends": ["hr_employee_firstname", "partner_second_lastname"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note. This dependency was present in the beginning.
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
Hi. @OCA/human-resources-maintainers . could you take a look on this trivial PR ? |
Just found that hr_employee_firstname doesn't depend on partner_firstname. As a result, some error occures, specially when creating employee from user.
This glue module is fixing some points.